home *** CD-ROM | disk | FTP | other *** search
- /*
- **
- ** Load To IProbe - ARexx script for HTMLEditor
- ** $VER: LoadToIProbe.hrx © Adam 'Sherwood' Zaparcinski
- ** This script saves actually edited file and loads this file to IProbe
- ** Tested with IProbe 0.5
- **
- */
-
- options results
- address 'HTMLEDIT.1'
-
- /* save edited file */
-
- he_save
-
- /* get name of file (with path) */
-
- he_getfilename
- URL=RESULT
-
- /* path to IProbe should be specified as an argument */
- PARSE ARG BROWSERPATH
-
- /* The simplest way to load our page to IProbe is to run
- ** IProbe with path and file as an argument. If IProbe
- ** is already running it will just load file
- */
-
- ADDRESS COMMAND
- 'RUN >NIL:' BROWSERPATH URL
- exit
-